home *** CD-ROM | disk | FTP | other *** search
- unit Tstffllb;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Ffltlbox;
-
- type
- TForm1 = class(TForm)
- FileFilterListBox1: TFileFilterListBox;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- FileFilterListBox1.ShowFileList;
- end;
-
- end.
-